home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update25.zoo / curses / diffs next >
Encoding:
Text File  |  1992-10-09  |  2.1 KB  |  106 lines

  1. *** 1.15    1992/08/14 15:26:22
  2. --- Changelo    1992/10/09 21:22:17
  3. ***************
  4. *** 181,183 ****
  5. --- 181,194 ----
  6.       add ident.o
  7.   
  8.   -------------------------- Patchlevel  15 ---------------------------------
  9. + tgetnum.c:: ers
  10. +     the tgetnum() function was crashing if it was asked to get
  11. +     a numerical capability that wasn't in the termcap entry.
  12. + Makefile mincl:: ers/++jrb
  13. +     convert to new integrated Makefile format.
  14. +     
  15. +     DELETE makefile.16 makefile.32 gmakefile.??
  16. + -------------------------- Patchlevel  16 ---------------------------------
  17. *** 1.13    1992/08/14 15:26:22
  18. --- PatchLev.h    1992/10/09 21:22:17
  19. ***************
  20. *** 1,5 ****
  21.   
  22. ! #define    PatchLevel "15"
  23.   
  24.   /*
  25.    *
  26. --- 1,5 ----
  27.   
  28. ! #define    PatchLevel "16"
  29.   
  30.   /*
  31.    *
  32. *** 1.15    1992/08/14 15:26:22
  33. --- Symbolic    1992/10/09 21:22:18
  34. ***************
  35. *** 13,15 ****
  36. --- 13,16 ----
  37.   V13    to all
  38.   V14     to all
  39.   V15    to all
  40. + V16    to all
  41. *** 1.4    1992/08/14 15:26:22
  42. --- mincl    1992/10/09 21:22:22
  43. ***************
  44. *** 27,46 ****
  45.       cp termcap.h $(INC)
  46.   
  47.   clean :
  48. !     rm -f $(CURSEOBJ) $(TERMOBJ) $(OTHER) $(TESTS)
  49.   
  50.   realclean : clean
  51. !     rm -f $(ALL) report core
  52.   
  53.   tests: $(TESTS)
  54.   
  55. ! testtcp.ttp: testtcp.o
  56. !     $(CC) $(MODEL) -o testtcp.ttp testtcp.o -l$(CURSES)
  57.   
  58. ! twinkle.ttp: twinkle.o
  59. !     $(CC) $(MODEL) -o twinkle.ttp twinkle.o -l$(CURSES)
  60.   
  61. ! worms.ttp: worms.o
  62. !     $(CC) $(MODEL) -o worms.ttp worms.o -l$(CURSES)
  63.   
  64. ! .PHONY: install clean realclean tests all
  65. --- 27,46 ----
  66.       cp termcap.h $(INC)
  67.   
  68.   clean :
  69. !     rm -f $(CURSEOBJ) $(TERMOBJ) $(OTHER)
  70.   
  71.   realclean : clean
  72. !     rm -f  $(TESTS) $(ALL) report core
  73.   
  74.   tests: $(TESTS)
  75.   
  76. ! ttcp$(ST).ttp: testtcp.c
  77. !     $(CC) $(CFLAGS) -o $@ $^ -l$(CURSES)
  78.   
  79. ! twinkl$(ST).ttp: twinkle.c
  80. !     $(CC) $(CFLAGS) -o $@ $^ -l$(CURSES)
  81.   
  82. ! worms$(ST).ttp: worms.c
  83. !     $(CC) $(CFLAGS) -o $@ $^ -l$(CURSES)
  84.   
  85. ! .PHONY: install clean realclean tests all top
  86. *** 1.4    1992/08/14 15:26:22
  87. --- tgetnum.c    1992/10/09 21:22:24
  88. ***************
  89. *** 151,156 ****
  90.   #if !defined(GEMDOS)
  91.         return(-1);
  92.   #else 
  93. !       return getlinecol(bp);
  94.   #endif 
  95.   }
  96. --- 151,156 ----
  97.   #if !defined(GEMDOS)
  98.         return(-1);
  99.   #else 
  100. !       return getlinecol(id);
  101.   #endif 
  102.   }
  103.